CC=gcc
CFLAGS=-Wall -pedantic

hello: hello.c
	$(CC) $(CFLAGS) hello.c -o hello
